from pathlib import Path
from compare import ReferenceComparer, get_last_two_commits
Find commits to compare¶
By default, the notebook compares last two commits(ref1hash is the older one and ref2hash is the newer one). You can customise this by changing the ref1_hash and ref2_hash variables or by providing REF1_HASH and REF2_HASH commit values. You can also provide custom spectrum paths for the two hashes with respect to the root directory for that commit.
import os
ref1_hash = os.getenv('REF1_HASH')
ref2_hash = os.getenv('REF2_HASH')
if not (ref1_hash and ref2_hash):
ref1_hash, ref2_hash = get_last_two_commits()
if not (ref1_hash and ref2_hash):
raise ValueError("Could not get commit hashes.")
if os.getenv('CUSTOM_REF1_SPECTRUM_PATH'):
custom_ref1_spectrum_path = os.getenv('CUSTOM_REF1_SPECTRUM_PATH')
else:
custom_ref1_spectrum_path = 'tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver/TestSpectrumSolver.h5'
if os.getenv('CUSTOM_REF2_SPECTRUM_PATH'):
custom_ref2_spectrum_path = os.getenv('CUSTOM_REF2_SPECTRUM_PATH')
else:
custom_ref2_spectrum_path = 'tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver/TestSpectrumSolver.h5'
ref1_hash, ref2_hash
('b2fdf418ac1a3631f8c3d2a5f392b6ebfa09ba0b',
'58d9456e1801e0e0056be317c8aa8406afa2c1c2')
Example Values¶
Below are example values you can test the notebook with.
# ref1_hash="170f1a2c0d8c6db518a4b9a0f4cb9b657aaa61b6"
# ref2_hash="d9fd3bb659d185bd9ece10b8e2175cf497ea84c5"
# custom_ref1_spectrum_path = 'tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver/TestSpectrumSolver.h5'
# custom_ref2_spectrum_path = 'test_spectrum_solver/test_spectrum_solver/TestSpectrumSolver.h5'
Initialise the ReferenceComparer class¶
comparer = ReferenceComparer(ref1_hash=ref1_hash, ref2_hash=ref2_hash, print_path=True)
comparer.setup()
comparer.diff_analyzer.display_diff_tree(comparer.dcmp)
Created temporary directory at /tmp/ref_compare_rlb7ye8j
ā .github/ ā ā actions/ ā ā ā setup_env/ ā ā workflows/ ā arepo_data/
ā atom_data/
ā ā nlte_atom_data/
ā ā stardis_atom_data/
ā tardis/ ā ā opacities/ ā ā ā tests/ ā ā ā ā test_tau_sobolev/ ā ā plasma/ ā ā ā equilibrium/ ā ā ā ā tests/ ā ā ā ā ā test_level_populations/ ā ā ā ā ā ā test_level_population_solver/ ā ā ā ā ā test_rate_matrix/ ā ā ā tests/ ā ā ā ā test_complete_plasmas/ ā ā ā ā ā test_plasma/ ā ā ā ā ā ā± plasma_unittest_disable_electron_scattering_False.h5 ā ā ā ā ā ā± plasma_unittest_disable_electron_scattering_True.h5 ā ā ā ā ā ā± plasma_unittest_excitation_dilute-lte.h5 ā ā ā ā ā ā± plasma_unittest_excitation_lte.h5 ā ā ā ā ā ā± plasma_unittest_helium_treatment_recomb-nlte.h5 ā ā ā ā ā ā± plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 ā ā ā ā ā ā± plasma_unittest_initial_t_inner_10000 K.h5 ā ā ā ā ā ā± plasma_unittest_initial_t_rad_10000 K.h5 ā ā ā ā ā ā± plasma_unittest_ionization_lte.h5 ā ā ā ā ā ā± plasma_unittest_ionization_nebular.h5 ā ā ā ā ā ā± plasma_unittest_line_interaction_type_downbranch.h5 ā ā ā ā ā ā± plasma_unittest_line_interaction_type_macroatom.h5 ā ā ā ā ā ā± plasma_unittest_line_interaction_type_scatter.h5 ā ā ā ā ā ā± plasma_unittest_nlte.h5 ā ā ā ā ā ā± plasma_unittest_nlte_classical_nebular.h5 ā ā ā ā ā ā± plasma_unittest_nlte_coronal_approximation.h5 ā ā ā ā ā ā± plasma_unittest_radiative_rates_type_blackbody.h5 ā ā ā ā ā ā± plasma_unittest_radiative_rates_type_detailed.h5 ā ā ā ā ā ā± plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 ā ā ā ā ā ā± plasma_unittest_radiative_rates_type_dilute-blackbody.h5 ā ā ā ā test_hdf_plasma/ ā ā ā ā test_nlte_excitation/ ā ā ā ā test_nlte_solver/ ā ā ā ā test_plasma_continuum/ ā ā ā ā test_tardis_model_density_config/ ā ā simulation/ ā ā ā tests/ ā ā ā ā test_simulation/ ā ā spectrum/ ā ā ā tests/ ā ā ā ā test_spectrum_solver/ ā ā ā ā ā test_spectrum_solver/
ā ā tests/ ā ā ā test_tardis_full/ ā ā ā ā test_transport_simple/
ā ā ā test_tardis_full_formal_integral/ ā ā ā ā test_transport_simple_formal_integral/ ā ā transport/ ā ā ā montecarlo/ ā ā ā ā tests/ ā ā ā ā ā test_continuum/
ā ā ā ā ā test_montecarlo_main_loop/ ā ā ā ā ā test_packet_source/ ā ā ā ā ā ā test_black_body_simple_source/ ā ā ā ā ā ā test_black_body_simple_source_rel/ ā ā ā ā ā test_rpacket_tracker/ ā ā ā ā ā test_weighted_packet_source/ ā ā ā ā ā ā test_black_body_weighted_source/ ā ā visualization/ ā ā ā tools/ ā ā ā ā tests/ ā ā ā ā ā test_liv_plot/ ā ā ā ā ā ā test_liv_plotter/ ā ā ā ā ā test_sdec_plot/ ā ā ā ā ā ā test_sdec_plotter/
comparer.compare()
Error comparing item: /simulation/plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Error comparing item: /simulation/plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /plasma/lines in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/f_lu in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_helium_treatment_recomb-nlte.h5: Total number of keys- in ref1: 41, in ref2: 41 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 29 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_blackbody.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_blackbody.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_blackbody.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_blackbody.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_radiative_rates_type_blackbody.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_disable_electron_scattering_True.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_disable_electron_scattering_True.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_disable_electron_scattering_True.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_disable_electron_scattering_True.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_disable_electron_scattering_True.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5: Total number of keys- in ref1: 41, in ref2: 41 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 29 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_dilute-blackbody.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_dilute-blackbody.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_dilute-blackbody.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_dilute-blackbody.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_radiative_rates_type_dilute-blackbody.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Significant difference detected in plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_excitation_lte.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_excitation_lte.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_excitation_lte.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_excitation_lte.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_excitation_lte.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /plasma/lines in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Significant difference detected in plasma_unittest_disable_electron_scattering_False.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/f_lu in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_disable_electron_scattering_False.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/nu in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_disable_electron_scattering_False.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_disable_electron_scattering_False.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_disable_electron_scattering_False.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_coronal_approximation.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 2.51e-05 (Versions differ by 2.51e-03%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 | 2.1e-07 |
| max | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.7e-07 | 2.7e-07 | 2.7e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 | 2.6e-07 |
| max | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.5e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 | 2.4e-05 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_coronal_approximation.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_nlte_coronal_approximation.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/previous_beta_sobolev in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_coronal_approximation.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_nlte_coronal_approximation.h5: Total number of keys- in ref1: 38, in ref2: 38 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 12 Number of totally same keys: 25 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_scatter.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_scatter.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_scatter.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_line_interaction_type_scatter.h5: Total number of keys- in ref1: 33, in ref2: 33 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 9 Number of totally same keys: 23 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_classical_nebular.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.98e-04 (Versions differ by 1.98e-02%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-06 | 1.4e-06 | 1.3e-06 | 1.2e-06 | 1.1e-06 | 9.9e-07 | 9.2e-07 | 8.5e-07 | 7.9e-07 | 7.4e-07 | 6.9e-07 | 6.4e-07 | 6e-07 | 5.7e-07 | 5.3e-07 | 5e-07 | 4.7e-07 | 4.4e-07 | 4.2e-07 | 4e-07 |
| max | 0.00017 | 0.00016 | 0.00014 | 0.00013 | 0.00012 | 0.00011 | 0.00011 | 9.9e-05 | 9.2e-05 | 8.6e-05 | 8e-05 | 7.5e-05 | 7e-05 | 6.6e-05 | 6.2e-05 | 5.8e-05 | 5.5e-05 | 5.2e-05 | 4.9e-05 | 4.6e-05 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.9e-06 | 1.7e-06 | 1.6e-06 | 1.5e-06 | 1.4e-06 | 1.3e-06 | 1.2e-06 | 1.1e-06 | 1e-06 | 9.5e-07 | 8.8e-07 | 8.2e-07 | 7.6e-07 | 7.1e-07 | 6.7e-07 | 6.3e-07 | 5.9e-07 | 5.5e-07 | 5.2e-07 | 4.9e-07 |
| max | 0.0002 | 0.00018 | 0.00016 | 0.00015 | 0.00014 | 0.00013 | 0.00012 | 0.00011 | 9.9e-05 | 9.2e-05 | 8.5e-05 | 7.9e-05 | 7.4e-05 | 6.9e-05 | 6.5e-05 | 6.1e-05 | 5.7e-05 | 5.4e-05 | 5.1e-05 | 4.8e-05 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_classical_nebular.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_classical_nebular.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/previous_beta_sobolev in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_classical_nebular.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_nlte_classical_nebular.h5: Total number of keys- in ref1: 38, in ref2: 38 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 12 Number of totally same keys: 25 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.98e-04 (Versions differ by 1.98e-02%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-06 | 1.4e-06 | 1.3e-06 | 1.2e-06 | 1.1e-06 | 9.9e-07 | 9.2e-07 | 8.5e-07 | 7.9e-07 | 7.4e-07 | 6.9e-07 | 6.4e-07 | 6e-07 | 5.7e-07 | 5.3e-07 | 5e-07 | 4.7e-07 | 4.4e-07 | 4.2e-07 | 4e-07 |
| max | 0.00017 | 0.00016 | 0.00014 | 0.00013 | 0.00012 | 0.00011 | 0.00011 | 9.9e-05 | 9.2e-05 | 8.6e-05 | 8e-05 | 7.5e-05 | 7e-05 | 6.6e-05 | 6.2e-05 | 5.8e-05 | 5.5e-05 | 5.2e-05 | 4.9e-05 | 4.6e-05 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.9e-06 | 1.7e-06 | 1.6e-06 | 1.5e-06 | 1.4e-06 | 1.3e-06 | 1.2e-06 | 1.1e-06 | 1e-06 | 9.5e-07 | 8.8e-07 | 8.2e-07 | 7.6e-07 | 7.1e-07 | 6.7e-07 | 6.3e-07 | 5.9e-07 | 5.5e-07 | 5.2e-07 | 4.9e-07 |
| max | 0.0002 | 0.00018 | 0.00016 | 0.00015 | 0.00014 | 0.00013 | 0.00012 | 0.00011 | 9.9e-05 | 9.2e-05 | 8.5e-05 | 7.9e-05 | 7.4e-05 | 6.9e-05 | 6.5e-05 | 6.1e-05 | 5.7e-05 | 5.4e-05 | 5.1e-05 | 4.8e-05 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_nlte.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/previous_beta_sobolev in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_nlte.h5: Total number of keys- in ref1: 38, in ref2: 38 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 12 Number of totally same keys: 25 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_nebular.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_nebular.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_nebular.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_nebular.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_ionization_nebular.h5: Total number of keys- in ref1: 39, in ref2: 39 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 27 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_downbranch.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_downbranch.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_line_interaction_type_downbranch.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_downbranch.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_line_interaction_type_downbranch.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_initial_t_rad_10000 K.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.16e-08 (Versions differ by 9.16e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 | 9.2e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_initial_t_rad_10000 K.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/nu in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_initial_t_rad_10000 K.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_initial_t_rad_10000 K.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_initial_t_rad_10000 K.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Significant difference detected in plasma_unittest_excitation_dilute-lte.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_excitation_dilute-lte.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_excitation_dilute-lte.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_excitation_dilute-lte.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_excitation_dilute-lte.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_detailed.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_detailed.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/nu in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_detailed.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_detailed.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_radiative_rates_type_detailed.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_macroatom.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_macroatom.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_macroatom.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_macroatom.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_line_interaction_type_macroatom.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_lte.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.14e-08 (Versions differ by 9.14e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_lte.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/nu in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_lte.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_lte.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_ionization_lte.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/lines in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | line_id | wavelength | f_ul | f_lu | nu | B_lu | B_ul | A_ul | wavelength_cm |
|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/wavelength_cm in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_initial_t_inner_10000 K.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 9.16e-08 (Versions differ by 9.16e-06%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 | 1.2e-09 |
| max | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 | 6.9e-08 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 | 1.5e-09 |
| max | 9.2e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9.1e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 9e-08 | 8.9e-08 | 8.9e-08 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/f_lu in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_initial_t_inner_10000 K.h5, key=/plasma/lines_upper_level_index Maximum relative difference: 4.41e-02 (Versions differ by 4.41e+00%)
Displaying heatmap for key /plasma/lines_upper_level_index in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5 |
| max | 3 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.023 |
| max | 0.044 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/nu in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0 |
| max | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_initial_t_inner_10000 K.h5, key=/plasma/lines_lower_level_index Maximum relative difference: 1.79e-02 (Versions differ by 1.79e+00%)
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/lines_lower_level_index in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.52 |
| max | 1 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 0.0093 |
| max | 0.018 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_initial_t_inner_10000 K.h5, key=/plasma/macro_atom_data Maximum relative difference: 1.00e+00 (Versions differ by 1.00e+02%)
Displaying heatmap for key /plasma/macro_atom_data in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.065 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Visualising Relative Differences
| Ā | atomic_number | ion_number | source_level_number | destination_level_number | transition_type | transition_probability | transition_line_id | lines_idx | destination_level_idx | source_level_idx |
|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.0087 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Path1: /tmp/ref_compare_rlb7ye8j/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /tmp/ref_compare_rlb7ye8j/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma ================================================== Summary for plasma_unittest_initial_t_inner_10000 K.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 11 Number of totally same keys: 24 ==================================================
Error comparing item: /data No module named 'numpy._core.numeric'
Error comparing item: /simulation/plasma/yg_interp No module named 'numpy._core.numeric'
Error comparing item: /simulation/plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Error comparing item: /simulation/plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Error comparing item: /simulation/plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Testing individual files¶
You can compare individual files too. Below example would work if you used example commits.
# comparer.hdf_comparator.summarise_changes_hdf("test_generate_plot_ply__plotter_generate_plot_ply1__.h5",
# Path(comparer.ref1_path) / "tardis/visualization/tools/tests/test_liv_plot/test_liv_plotter",
# Path(comparer.ref2_path) / "tardis/visualization/tools/tests/test_liv_plot/test_liv_plotter"
# )
HDF File Comparison¶
Below graph visualises all the HDF files that changed. Each block represents a key that changed, hovering on that block would show relative percentage change for that key.
fig_same_name = comparer.generate_graph("different keys same name")
fig_different_keys = comparer.generate_graph("different keys")
Generating graph with updated hovertemplate
Saved plot to comparison_plots_58d945_new_b2fdf4_old/same_name_diff.png Generating graph with updated hovertemplate
fig_different_keys
fig_same_name.layout.width = 1000
fig_same_name
Spectrum Comparison¶
You can compare TARDIS spectra for the two commits and also provide a custom path for the spectra.
comparer.compare_testspectrumsolver_hdf(
custom_ref1_path=Path(comparer.ref1_path) / custom_ref1_spectrum_path,
custom_ref2_path=Path(comparer.ref2_path) / custom_ref2_spectrum_path
)
/home/runner/work/tardis/tardis/tardis-regression-data/compare.py:332: UserWarning: This figure includes Axes that are not compatible with tight_layout, so results might be incorrect.
Saved spectrum plot to comparison_plots_58d945_new_b2fdf4_old/spectrum.png
comparer.teardown()
Removed temporary directory /tmp/ref_compare_rlb7ye8j